home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 684 / 684.xpi / chrome / fireftp.jar / content / confirmFile.xul < prev    next >
Extensible Markup Language  |  2008-01-12  |  3KB  |  61 lines

  1. <?xml version="1.0"?>
  2.  
  3. <?xml-stylesheet href="chrome://global/skin/global.css"   type="text/css"?>
  4. <?xml-stylesheet href="chrome://fireftp/skin/fireftp.css" type="text/css"?>
  5.  
  6. <!DOCTYPE dialog SYSTEM "chrome://fireftp/locale/confirmFile.dtd">
  7. <dialog id             = "confirmFile4"
  8.         title          = "&title;"
  9.         xmlns          = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.         persist        = "screenX screenY"
  11.         buttons        = "accept, cancel"
  12.         ondialogaccept = "answer(1);"
  13.         ondialogcancel = "answer(3);"
  14.         onload         = "init()">
  15.  
  16.   <stringbundle id="strings" src="chrome://fireftp/locale/strings.properties"/>
  17.  
  18.   <script type="application/x-javascript" src="chrome://fireftp/content/js/etc/common.js"/>
  19.   <script type="application/x-javascript" src="chrome://fireftp/content/js/dialogs/confirmFile.js"/>
  20.   <script type="application/x-javascript" src="chrome://fireftp/content/js/etc/misc.js"/>
  21.  
  22.   <vbox flex="1" align="center">
  23.     <description id="question"  value="" class="paddingTop" crop="start"/>
  24.     <hbox id="fileBox">
  25.       <vbox class="paddingRight">
  26.         <label value="&existing.label;"/>
  27.         <hbox>
  28.           <box     align="center"   width="32" height="32">
  29.             <image id="efileIcon"   width="32" height="32"/>
  30.           </box>
  31.           <vbox>
  32.             <label id="esize"/>
  33.             <label id="edate"/>
  34.           </vbox>
  35.         </hbox>
  36.       </vbox>
  37.       <vbox class="paddingLeft">
  38.         <label value="&new.label;"/>
  39.         <hbox>
  40.           <box     align="center"   width="32" height="32">
  41.             <image id="nfileIcon"   width="32" height="32"/>
  42.           </box>
  43.           <vbox>
  44.             <label id="nsize"/>
  45.             <label id="ndate"/>
  46.           </vbox>
  47.         </hbox>
  48.       </vbox>
  49.     </hbox>
  50.     <hbox align="center" class="paddingTop">
  51.       <button id="overwrite"    label="&overwrite.label;"    accesskey="&overwrite.access;"    dlgtype="accept"/>
  52.       <button id="overwriteall" label="&overwriteall.label;" accesskey="&overwriteall.access;" oncommand="answer(2)"/>
  53.       <button id="skip"         label="&skip.label;"         accesskey="&skip.access;"         dlgtype="cancel"/>
  54.       <button id="skipall"      label="&skipall.label;"      accesskey="&skipall.access;"      oncommand="answer(5)"/>
  55.       <button id="resume"       label="&resume.label;"       accesskey="&resume.access;"       oncommand="answer(4)"/>
  56.     </hbox>
  57.     <description id="timeout" value=""/>
  58.   </vbox>
  59.  
  60. </dialog>
  61.